home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / SOUND.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  633b  |  16 lines

  1. /*
  2.  *    Sound core interface functions
  3.  */
  4.  
  5. extern int register_sound_special(struct file_operations *fops, int unit);
  6. extern int register_sound_mixer(struct file_operations *fops, int dev);
  7. extern int register_sound_midi(struct file_operations *fops, int dev);
  8. extern int register_sound_dsp(struct file_operations *fops, int dev);
  9. extern int register_sound_synth(struct file_operations *fops, int dev);
  10.  
  11. extern void unregister_sound_special(int unit);
  12. extern void unregister_sound_mixer(int unit);
  13. extern void unregister_sound_midi(int unit);
  14. extern void unregister_sound_dsp(int unit);
  15. extern void unregister_sound_synth(int unit);
  16.